home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / fish / 676-700 / 682 / rexxhostlib / makefile < prev    next >
Makefile  |  1995-03-18  |  509b  |  25 lines

  1. ##
  2. ##    rexxhost.library - ARexx host management support library
  3. ##
  4. ##    Copyright © 1990-1992 by Olaf `Olsen' Barthel
  5. ##        All Rights Reserved
  6. ##
  7.  
  8. .c.o:
  9.     LC $(CFLAGS) $*.c
  10.  
  11. .asm.o:
  12.     ASM -IASM: $*.asm
  13.  
  14. CFLAGS            = -cimqws -b1 -r1 -v -mt0 -HRexxHost.SYM
  15. OBJS            = RomTag.o LibMain.o RexxHostLib.o
  16.  
  17. all:            RexxHost.SYM rexxhost.library
  18.  
  19. rexxhost.library:    $(OBJS)
  20.             BLINK $(OBJS) TO $@ LIB LIB:amiga2.0.lib LIB:lc.lib SC SD ND
  21.             Protect $@ -e
  22.  
  23. RexxHost.SYM:        PreInclude.c
  24.             LC -cimqw -ph -oRexxHost.SYM PreInclude.c
  25.